home *** CD-ROM | disk | FTP | other *** search
- /*
- * lfsDescMapInt.h --
- *
- * Declarations of LFS descriptor map routines and data structures
- * private to the Lfs module.
- *
- * Copyright 1989 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * $Header: /cdrom/src/kernel/Cvsroot/kernel/lfs/lfsDescMapInt.h,v 1.3 92/09/03 18:13:25 shirriff Exp $ SPRITE (Berkeley)
- */
-
- #ifndef _LFSDESCMAPINT
- #define _LFSDESCMAPINT
-
- #include <lfsDescMap.h>
- #include <lfsStableMemInt.h>
-
- /* constants */
-
- /* data structures */
-
- /* procedures */
- extern void LfsDescMapInit _ARGS_((void));
-
- extern void LfsDescCacheInit _ARGS_((struct Lfs *lfsPtr));
- extern ReturnStatus LfsDescMapGetVersion _ARGS_((struct Lfs *lfsPtr,
- int fileNumber, unsigned short *versionNumPtr));
- extern ReturnStatus LfsDescMapIncVersion _ARGS_((struct Lfs *lfsPtr,
- int fileNumber, int *versionPtr));
- extern ReturnStatus LfsDescMapGetDiskAddr _ARGS_((struct Lfs *lfsPtr,
- int fileNumber, LfsDiskAddr *diskAddrPtr));
- extern ReturnStatus LfsDescMapSetDiskAddr _ARGS_((struct Lfs *lfsPtr,
- int fileNumber, LfsDiskAddr diskAddr));
- extern ReturnStatus LfsDescMapGetAccessTime _ARGS_((struct Lfs *lfsPtr,
- int fileNumber, int *accessTimePtr));
- extern ReturnStatus LfsDescMapSetAccessTime _ARGS_((struct Lfs *lfsPtr,
- int fileNumber, int accessTime));
-
-
- #endif /* _LFSDESCMAPINT */
-
-